/*===================================
  基本設定
===================================*/
:root {
  --c-01: #e61d72;
  --c-02: #efefef;
  --c-03: #fbf2ed;
  --c-04: #333;
  --ml100: 100px;
}

html{
  overflow-x: hidden;
  width: 100%;
}
body{
  overflow-x: hidden;
  width: 100%;
}
.c-01 {
background: linear-gradient(108deg, #069496 0, #04999d 32%, #078e98 84%, #078e98 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.bgc-01 {
  background: var(--c-02);
}
.bgc-02 {
  background: var(--c-03);
}

.c-04{
  background-color: var(--c-04);
}

.ff-zen{
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.caveat {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.zen-kurenaido-regular {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.biz-udgothic-regular {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.c-w {
  color: #fff;
}
/* .c-red {
  color: #cb2626;
} */
.bgc-w {
  background: #fff;
}

/* 共通コンテンツ間隔 */
.area {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 599px) {
  .area {
      padding-top: 80px;
      padding-bottom: 80px;
  }
}

html {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #333;
    font-style: normal;
    letter-spacing: 1px;
    /* background-image: radial-gradient(#37363630 0.5px, transparent 0.5px); */
    /* background-size: 8px 8px; */
}

.wrapper{
  background-color: #def0f4;
}

.inner{
width: 96%;
max-width: 1000px;
margin-right: auto;
margin-left: auto;
}

.inner1300{
  width: 96%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  }

.inner1500{
  width: 96%;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  }


/* 共通使用 */

/* .marker{
  background: linear-gradient(transparent 70%, #ff6 30%);
} */

  .animated-underline {
  display: inline-block;
  position: relative;

}

.animated-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 3px;
    width: 0%;
    background: linear-gradient(108deg, #0079d0 0%, #9e52d8 32%, #da365c 84%, #d04901 100%);
    transition: width 1s ease-out;
}

.animated-underline.visible::after {
  width: 100%;
}

.maxw-200{
  max-width: 200px;
}

.maxw-600{
  max-width: 600px;
}

.center{
  place-items: center;
  display: grid;
}

.pc-none{
  display: none;
}

.sp-none{
  display: block;
}

.pc-br{
  display: block;
}

@media (max-width: 599px) {

.pc-br{
  display: none;
}

  .pc-none{
    display: block;
  }
  
  .sp-none{
    display: none;
  }
}

img{
  width: 100%;
  max-width: 100%;
}

.h2{
font-weight: bold; 
}
.h3{
  letter-spacing: 0.1em;
  font-size: 38px;
  font-weight: 500;
}


/* 余白 */
.section-py50{
  padding-top: 50px;
  padding-bottom: 50px;
}

/* header */

@media (min-width: 1025px) {
.header{
  height: 100px;
  width: 100%;
  position: fixed;
  background: #fff;
  top: 0;
  z-index: 99;
}

#sp-navArea{
  display: none;
}

.mainvisual{
  margin-top: 100px; 
}
}

.header-flex{
  display: flex;
  gap: 20px;
}

.header-inner{
  padding-top: 20px;
  padding-bottom: 20px;
}

.header .logo{
  width: 200px;
}

.header .cta-area ul{
  gap: 20px;
}

.cta-area ul li a:hover{
  opacity: 1;
}

.cta-area ul li {
  height: 50px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 20px;
}

.cta-area ul li a {
  padding: 0px 40px;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  letter-spacing: 0em;
  white-space: nowrap;
}

.cta-area ul li:first-of-type{
  background-color: #c42b20;
  color: #fff;
  position: relative;
}

.cta-area ul li:first-of-type span {
  position: absolute;
  right: 50%;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 80%;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #c42b20;
  color: #c42b20;
  font-size: 10px;
  display: grid;
  place-items: center;
  padding: 1px 0px;
}

.cta-area ul li span:before,
.cta-area ul li span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}

.cta-area ul li:first-of-type span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #c42b20 transparent transparent transparent;
}

.cta-area ul li:first-of-type span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}


.cta-area ul li:last-of-type{
  background-color: #fff;
  color: #c42b20;
  position: relative;
  border: 1px solid #c42b20;
}

.cta-area ul li:last-of-type span {
  position: absolute;
  right: 50%;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 80%;
  background: #c42b20;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
  padding: 1px 0px;
}

.cta-area ul li span:before,
.cta-area ul li span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}

.cta-area ul li:last-of-type span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.cta-area ul li:last-of-type span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #c42b20 transparent transparent transparent;
}

/* ── 1) 1つ目ボタンのホバー ── */
.cta-area ul li:first-of-type:hover {
    background-color: #fff;
    color: #c42b20;
    border: 1px solid #c42b20;
    opacity: 1;
}

.cta-area ul li:first-of-type:hover span {
  background: #c42b20;
  border-color: #fff;
  color: #fff;
  opacity: 1;
}
/* バッジ下部の三角も反転 */
.cta-area ul li:first-of-type:hover span:before {
  border-color: #c42b20 transparent transparent transparent;
  opacity: 1;
}
.cta-area ul li:first-of-type:hover span:after {
  border-color: #fff transparent transparent transparent;
  opacity: 1;
}

/* ── 2) 2つ目ボタンのホバー ── */
.cta-area ul li:last-of-type:hover {
  background-color: #c42b20;
  color: #fff;
  border-color: #c42b20;
  opacity: 1;
}
.cta-area ul li:last-of-type:hover span {
  background: #fff;
  border-color: #c42b20;
  color: #c42b20;
  opacity: 1;
}
/* バッジ下部の三角も反転 */
/* .cta-area ul li:last-of-type:hover span:before {
  border-color: #fff transparent transparent transparent;
}
.cta-area ul li:last-of-type:hover span:after {
  border-color: #c42b20 transparent transparent transparent;
} */


/* タブレット以下のナビゲーション */

/*============
nav
=============*/

@media (max-width: 1024px) {
#sp-navArea nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
#sp-navArea #sp-navArea .open nav {
  left: 0;
  opacity: 1;
}
#sp-navArea nav .inner {
  padding: 25px;
}
#sp-navArea nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sp-navArea nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
#sp-navArea nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
#sp-navArea nav .inner ul li a:hover {
  background: #e4e4e4;
}
/* @media screen and (max-width: 767　px) {
  #sp-navArea nav {
    left: -220px;
    width: 220px;
  }
} */
/*============
.toggle_btn
=============*/
#sp-navArea .toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
#sp-navArea .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
#sp-navArea .toggle_btn span:nth-child(1) {
  top: 4px;
}
#sp-navArea .toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
#sp-navArea .open .toggle_btn span {
  background-color: #fff;
}
#sp-navArea .open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
#sp-navArea .open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
#sp-navArea .open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#sp-navArea #mask {
  display: none;
  transition: all .5s;
}
#sp-navArea #sp-navArea .open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
}

/* メインビジュアル */
.mainvisual img{
  width: 100%;
}

/* CSS */
:root {
  --main-color: #c42b20;
  --main-hover: #fff;
  --text-hover: #c42b20;
}

/* コンテナ */
.cta-campaign {
    display: inline-block;
    position: relative;
    margin-top: -9vw;
}

/* ボタン本体 */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 15px 50px;
  border: 2px solid var(--main-color);
  border-radius: 999px;
  background-color: var(--main-hover);
  color: var(--main-color);
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  margin-left: 30px;
}

/* ホバー時 */
.cta-btn:hover {
  background-color: var(--main-color);
  color: var(--main-hover);
  opacity: 1;
}

/* 矢印アイコン */
.cta-btn__arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 20px;
  line-height: 1;
  transition: color 0.3s;
}
.cta-btn:hover .cta-btn__arrow {
  color: var(--main-hover);
}

/* バナー部分 */
.cta-btn__banner {
  position: absolute;
  top: -20px;
  left: 20px;
  padding: 4px 12px;
  background-color: var(--main-color);
  color: var(--main-hover);
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  transform: skew(-10deg);
  white-space: nowrap;
}

/* ホバー時にバナーも反転 (必要ならコメントアウトして下さい) */
.cta-btn:hover .cta-btn__banner {
  background-color: var(--main-hover);
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

@media (max-width: 599px) {
  .cta-btn {
  margin-left: 10px;
}
}

/* キャッチ */
.fz22to48{
  font-size: clamp(1.375rem, 0.784rem + 2.95vw, 3rem);
}

.lh-18{
  line-height: 1.8em;
}


/* 以下のようなお悩みありませんか？ */

#worries {
  position: relative;
  background: #1e242c;
  background-image: radial-gradient(#373636 0.5px, transparent 0.8px);
  background-size: 8px 8px;
}

.mb-200{
  margin-bottom: 200px;
}

.pos-r{
  position: relative; 
}

.custom-shape-divider-top-1746529002 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1746529002 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1746529002 .shape-fill {
  fill: #1e242c;
}

.worries {
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* 波形 SVG */
.worries__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
/* 背景画像 */
.worries__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/nayami-man.jpeg);
  background-size: cover;
  opacity: 0.8;
  z-index: -1;
}
/* コンテナ */
.worries__inner {
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.worries__subtitle {
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.8;
}
.worries__title {
  font-size: 2rem;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* .section-py150{
  padding-top: 150px;
  padding-bottom: 150px;
} */

.max-w750{
  max-width: 750px;
}

/* お悩みリスト */

.ml100{
 margin-left: var(--ml100);
}

.worries__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.worries__col {
  width: calc(50% - 10px);
}
.worries__item {
  position: relative;
  margin-bottom: 30px;
  padding: 16px 20px;
  background: rgb(255 255 255);
  color: #333;
  border-radius: 4px;
}
.worries__item p {
  font-size: 0.95rem;
  padding-top: 15px;
  line-height: 1.5;
}
.worries__label {
  position: absolute;
  top: -20px;
  left: -10px;
  display: inline-block;
  padding: 4px 20px;
  background: #069496;
  color: #fff;
  font-size: 16px;
  transform: rotate(-5deg);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.service-intro {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-bottom: 100px;
}

.worries__item.mb-10{
  margin-bottom: 10px; 
}

.service-intro__label {
    display: inline-block;
    background: linear-gradient(108deg, #069496 0, #04999d 32%, #078e98 84%, #078e98 100%);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.875rem;
    transform: skew(-20deg);
    margin-bottom: 16px;
    display: block;
    width: 50%;
}

.service-intro__title {
  color: #fff;
  font-size: clamp(1.25rem, 1.007rem + 1.22vw, 2.375rem);
  line-height: 2rem;
  margin-bottom: 24px;
}

.service-intro__title span{
  font-size: clamp(1.25rem, 1.007rem + 1.22vw, 2.375rem);
}

.service-intro__desc {
  font-size: 0.95rem;
  line-height: 2rem;
  margin-left: auto;
  margin: 0 auto auto 0;
  opacity: 0.8;
  color: #fff;
}

.reasons .fead-text .str.textin {
    line-height: normal;
    font-size: clamp(1.5rem, 0.682rem + 4.09vw, 3.75rem);
}

/* 波線の飾り (ダミーSVG) */
.service-intro__wave {
    position: absolute;
    bottom: 18%;
    right: 0;
    width: 60%;
    opacity: 1;
    z-index: 0;
    width: 100vw;
    /* transform: translateY(-50%); */
}

.service-intro .txt-box {
    width: 70%;
    position: relative;
    margin-left: calc((100vw - 100%) / 2 * -1);
    background: #1e242c;
    background-image: radial-gradient(#373636 0.5px, transparent 0.5px);
    background-size: 8px 8px;
    padding: 60px 8% 60px 3%;
    color: #fff;
}

.service-intro .order2{
  width: 40%;
  display: block;
  align-content: center;
  margin-left: -2%;
  min-width: 250px;
}


/*── 理由エリア ──*/
/* .reasons {
  background: #f9f9f9;
  padding: 80px 20px;
} */

.triangle {
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, #1e242c 20%, #1c2730 40%, #f5f6f7 256%);
}

.reasons {
    position: relative;
    background: rgb(30, 36, 44);
    background-image: radial-gradient(#373636 0.5px, transparent 0.8px);
    background-size: 8px 8px;
    padding: 100px 0 150px;
    margin-top: 150px;
    margin-bottom: 250px;
}

/* 上下共通の設定 */
.reasons::before, .reasons::after {
    content: "";
    position: absolute;
    left: 0%;
    width: 100%;
    background: inherit;
    background-size: inherit;
    z-index: 1;
}
/* ▲ 上端 */
.reasons::before {
    top: -14px;
    height: 9vw;
    transform-origin: top left;
    transform: skewY(356deg);
    background: #1e242c;
    background-image: radial-gradient(#373636 0.5px, transparent 0.8px);
    background-size: 8px 8px;
    overflow: hidden;
}

/* ▼ 下端 */
.reasons::after {
    bottom: 0;
    height: 7vw;
    transform-origin: bottom left;
    transform: skewY(3deg);
    background-image: radial-gradient(#373636 0.5px, transparent 0.8px);
    background-size: 8px 8px;
    overflow: hidden;
}

.custom-shape-divider-top-1745158858 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1745158858 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 69px;
}

.custom-shape-divider-top-1745158858 .shape-fill {
  fill: #ffffff;
}

.custom-shape-divider-bottom-1745158966 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1745158966 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 69px;
}

.custom-shape-divider-bottom-1745158966 .shape-fill {
  fill: #ffffff;
}

.reasons .flow-bg {
  font-family: "Oswald", sans-serif;
    line-height: normal;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    user-select: none;
    pointer-events: none;
}

.reasons .caveat {
position: absolute;
    top: 90px;
    left: 11%;
    transform: translateX(-50%);
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    user-select: none;
    pointer-events: none;
}


.reasons .txt-box {
    background-color: #fff;
    box-shadow: 5px 5px 10px #1e242c, -5px -5px 10px #1e242c;
    border-radius: 0px 23px 23px 0px;
    background: linear-gradient(145deg, #1b2028, #20272f);
    box-shadow: 20px 20px 41px #12151a, -20px -20px 41px #2a333e;
}

.reason-list li:nth-of-type(even) .reason.txt-box{
  border-radius: 23px 0px 0px 23px;
}


.reason-list li:nth-of-type(even) img{
  border-radius: 23px 0px 0px 23px;
}


.reasons__header {
  text-align: center;
  margin-bottom: 150px;
  position: relative;
}
.reasons__header small {
  display: block;
  color: #ed2e7e;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.reasons__header h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}
.reasons__header h3 span {
  display: inline-block;
  color: #ed2e7e;
  font-size: 2.2rem;
  margin: 0 4px;
}



.reason01 {
    background-image: radial-gradient(#373636 0.5px, transparent 0.5px);
    background-size: 8px 8px;
    position: absolute;
    background-image: url(../image/smartphone.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0px 23px 23px 0px;
    opacity: .1;
    width: 100%;
    height: 100%;
    background-color: #000;
}

 .reason-list li:nth-of-type(even) .reason{
      border-radius: 23px 0px 0px 23px;
  }

 .reason-list li:nth-of-type(even) .reason01{
      border-radius: 23px 0px 0px 23px;
  }

.reason-inner {
  padding: 30px 30px 30px 60px;
}

.reason01 img{
  object-fit: cover;
    width: 100%;
    height: 100% !important;
        border-radius: 0px 23px 23px 0px;
}

.reason-list li:not(:last-of-type) {
  margin-bottom: 200px;
}

.reason-list li .reason{
  position: relative;
}

@media (min-width: 1025px) {

.reason-list li .reason.pos-r{
  width: 57vw;
}

  .reason-list li:nth-of-type(odd) .reason{
    margin-left: calc((100vw - 100%) / 2 * -1); 
  }
  
  .reason-list li:nth-of-type(even) .reason{
    margin-right: calc((100vw - 100%) / 2 * -1); 
  }
  
}

.reason-list li:nth-of-type(odd) .reason{
  /* margin-left: calc((100vw - 100%) / 2 * -1); */
  height: 400px;
}

.reason-list li:nth-of-type(even) .reason{
  /* margin-right: calc((100vw - 100%) / 2 * -1); */
  height: 400px;
}

.reason-list li:nth-of-type(even) .d-flex{
  flex-direction: row-reverse;
}

.reason__number {
  width: 15%;
  position: absolute;
  top: -6%;
  width: 240px;
}

.reason-list li:nth-of-type(odd) .reason .reason__number{
  left: 60px;
}


.reason__content {
  margin-top: 50px;
}

.reason__title {
    font-size: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem);
    margin-bottom: 20px;
    /* color: #333; */
    line-height: 2.5rem;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-image: linear-gradient(135deg, #FD6585 10%, #0D25B9 100%); */
    color: #fff;
}
.reason__title span{
  border-bottom: 1px solid #03939c;
}

.reason__text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    color: #fff;
}

.reason__list {
  margin-top: 12px;
  list-style: none;
}
.reason__list li {
  display: inline-block;
  margin-right: 12px;
  padding: 4px 8px;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* 図解画像 */
.reason--image {
  justify-content: center;
  align-items: center;
}
.reason--image img {
  max-width: 100%;
  height: auto;
}

/* 3番目は横並び */
.reason--full {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
}
.reason--full .reason__number {
  top: -30px;
  left: 30px;
  font-size: 4rem;
}
.reason--full .reason__content {
  flex: 1;
}
.reason--full img {
  max-width: 250px;
  height: auto;
}

/*── レスポンシブ ──*/
@media screen and (max-width: 768px) {
  .service-intro { padding-bottom: 60px; }
  .service-intro__title { font-size: 1.6rem; }
  .service-intro__desc { font-size: 0.9rem; }

  .reasons__grid {
    grid-template-columns: 1fr;
  }
  .reason--full {
    flex-direction: column;
    text-align: center;
  }
  .reason--full img {
    margin-top: 20px;
  }
}

/* 料金表 */

#price {
  /* background-image: url(../image/bgimage01@2x.png); */
  background-blend-mode: lighten;
  background-size: cover;
  margin-bottom: 100px;
}

#price h2{
  position: relative;
  z-index: 3;
  font-size: clamp(1.75rem, 1.438rem + 1.56vw, 3rem);
}

#price .caveat{
    position: absolute;
    top: -50px;
    opacity: 0.6;
    right: 50%;
    transform: translateX(50%);
}

#price .price span{
  font-size: 20px;
}


     .pricing-cards {
      display: flex;
      justify-content: center;
      gap: 24px;
      padding: 60px 0px 0px 0px;
    }
    .card {
      position: relative;
      width: 340px;
      background-color: #FFF;
      border-radius: 8px;
    }
    .card-header {
      position: relative;
      text-align: center;
      padding: 36px 0 24px; /* バッジの分だけ上パディングを確保 */
    }
    /* バッジ本体 */
    .badge {
      position: absolute;
      top: -12px; 
      transform: translateX(-50%);
      display: inline-block;
     padding: 10px 25px;
      font-size: 14px;
      line-height: 1;
      border-radius: 16px;
      white-space: nowrap;
      z-index: 1;
    }
    /* 下三角矢印 */
 
    /* プラン名・価格 */
    .card-header h3 {
      margin: 0 0 8px;
      font-size: 24px;
      font-weight: bold;
      color: #FFF;
    }
    .card-header .price {
      margin: 0;
      font-size: 60px;
      color: #FFF;
      font-family: "Oswald", sans-serif;
    }
    /* 各プラン色 */
    .card.free .card-header    { background-color: #2E373F; border-radius: 10px 10px 0px 0px;}
    .card.standard .card-header{ background-color: #aa0404; border-radius: 10px 10px 0px 0px;}
    .card.premium .card-header { background-color: #daae00; border-radius: 10px 10px 0px 0px;}
    /* バッジ色＆矢印色 */
    .card.free   .badge { background-color: #1F242B; color: #FFF; }
    .card.free   .badge::after { border-top-color: #1F242B; }
    .card.standard .badge { background-color: #C70000; color: #FFF; }
    .card.standard .badge::after { border-top-color: #C70000; }
    .card.premium .badge { background-color: #D4B500; color: #ffffff; }
    .card.premium .badge::after { border-top-color: #D4B500; }

    /* ボディ部分 */
    .card-body { padding: 24px; }
    .features {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .features li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #E5E5E5;
      font-size: 16px;
      color: #2E373F;
    }
    .features li:last-child { border-bottom: none; }
    .small-note {
      font-size: 12px;
      color: #8FA3B3;
      margin-left: 4px;
    }
    .detail {
      font-weight: bold;
      color: #393E44;
    }
    .icon-circle {
      width: 16px;
      height: 16px;
      border: 2px solid #29C997;
      border-radius: 50%;
      display: inline-block;
    }

    /* レスポンシブ */
    @media screen and (max-width: 1024px) {
      .pricing-cards {
        overflow-x: scroll;
    justify-content: flex-start;
    flex-wrap: nowrap;
        gap: 16px;
        padding: 40px 16px;
      }
      .card {
        flex-shrink: 0;
      }
    }
    /* @media screen and (max-width: 599px) {
      .pricing-cards {
        flex-direction: column;
        gap: 20px;
        padding: 20px 16px;
      }
      .card { width: 100%; }
    } */

#price .caveat span{
font-size: clamp(1.5rem, 0.682rem + 4.09vw, 3.75rem);
}

#price .flow-bg {
  font-family: "Oswald", sans-serif;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--primary);
    opacity: 0.2;
    pointer-events: none;
    user-select: none;
}

/* テーブルラッパー */
   .pricing-wrap {
    width: 100%;
    overflow: visible; /* 強調ではみ出す部分を表示 */
    padding: 20px;
  }

  /* テーブル基本 */
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    text-align: center;
  }
  .pricing-table th,
  .pricing-table td {
    border: 1px solid #e2e2e2;
    padding: 16px 8px;
  }

  /* 列定義 */
  .pricing-table col:first-child  { width: 25%; }
  .pricing-table col.col-free     { width: 25%; }
  .pricing-table col.col-standard { width: 25%; position: relative; z-index: 2; }
  .pricing-table col.col-prof     { width: 25%; }

  /* ヘッダー共通 */
  .pricing-table thead th {
    position: relative;
    font-weight: normal;
    background-color: #fff;
  }

  /* 各プラン色設定 */
  .pricing-table thead .col-standard {
    background: linear-gradient(108deg,#0079d0 0,#9e52d8 32%,#da365c 84%,#d04901 100%);
    color: #fff;
}

  .pricing-table thead .col-prof     { background: #fff;   color: #333; }

  /* 「おすすめ」バッジ */
  .pricing-table .badge {
    position: absolute;
    top: -35px;
    width: 30%;
}

  /* チェックマーク */
  .pricing-table .check {
    display: inline-block;
    font-size: 1.2rem;
    color: #ed2e7e;
    line-height: 1;
  }

  /* ゼブラストライプ */
  .pricing-table tbody tr:nth-child(odd) {
    background: #f9f9f9;
}

  .pricing-table tbody tr:nth-child(even) { background: #fff;     }

  /* スタンダード列強調 */
  .pricing-table .col-standard th,
  .pricing-table .col-standard td {
    transform: scale(1.05);
    transform-origin: center center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .2s ease;
  }
  .pricing-table .bgc-pink {
    /* background-color: #ed2e7e; */
    color: #fff;
    background: linear-gradient(108deg,#0079d0 0,#9e52d8 32%,#da365c 84%,#d04901 100%);
}

  .pricing-table .bgc-pink span{
    color: #fff;
  }

  /* 角丸（ヘッダー上部） */
  /* .pricing-table thead .col-standard {
    border-radius: 8px 8px 0 0;
  } */
  /* 角丸（最下行下部） */
  .pricing-table tbody tr:last-child .col-standard {
    border-radius: 0 0 8px 8px;
  }

  /* レスポンシブ調整 */
  @media screen and (max-width:600px) {
    .pricing-table th,
    .pricing-table td {
      padding: 12px 4px;
      font-size: 0.85rem;
    }
    .pricing-table .badge {
      top: -6px; right: -6px;
      padding: 3px 5px;
      font-size: 0.65rem;
    }

    #price{
      margin-bottom: 50px;
    }
  }

  .ctabnr{
    border-radius: 15px;
  }


  .ctabnr img{
    border-radius: 15px;
  }


:root {
  --primary: #1c9ea0;
  --bg-dark: #1F262E;
  --accent-yellow: #F9D239;
}

/* セクション全体 */
.steps-section {
  background-color: var(--bg-dark);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  background-image: radial-gradient(#373636 0.5px, transparent 0.5px);
  background-size: 8px 8px;
}
/* 背景FLOW */
.steps-title {
  position: relative;
  margin-bottom: 60px;
}
.flow-bg {
  position: absolute;
  top: -20px;
  left: 50%;
  /* transform: translateX(-50%); */
  font-size: 120px;
  color: rgba(255,255,255,0.1);
  user-select: none;
  pointer-events: none;
}

.steps-section .flow-bg {
  font-family: "Oswald", sans-serif;
  line-height: normal;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  color: rgba(255,255,255,0.1);
  user-select: none;
  pointer-events: none;
}
.steps-title h2 {
  font-size: clamp(1.75rem, 1.438rem + 1.56vw, 3rem);
  margin-bottom: 80px;
  color: #fff;
}

.steps-title h2 .highlight {
  line-height: normal;
  color: var(--primary);
  font-size: clamp(4rem, 3.672rem + 1.64vw, 5.313rem);
}

/* ステップリスト */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: visible;
}

/* 矢印要素のスタイル */
.step-arrow {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  z-index: 5;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 40px solid var(--primary);
  position: relative;
}

.step-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
}

/* 最後のステップには矢印を表示しない */
.step:last-child .step-arrow {
  display: none;
}

@media screen and (max-width: 1024px) {
  .step-arrow {
    display: none;
  }
}

/* 各ステップ */
.step {
  position: relative;
  margin: 0 24px;
    z-index: 1;
}


/* カード本体 */
.step-box {
  position: relative;
  background: #fff;
  padding: 32px 24px;
  width: 300px;
  box-sizing: border-box;
  border: 20px solid var(--primary);
  border-radius: 24px;
  text-align: center;
  color: var(--bg-dark);
  z-index: 2;
  box-shadow: 0px 0px 15px -5px #036353;
}
/* ステップアイコン */
.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

/* 見出し */
.step-box h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
}
/* 説明文 */
.step-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2E373F;
}

/* バッジ */
.step .badge {
    position: absolute;
    top: -3px;
    right: -16px;
    background: var(--primary);
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 25px;
    padding: 24px 14px;
    border-radius: 4px;
    z-index: 3;
    font-family: "Oswald", sans-serif;
}

/* レスポンシブ（例） */
@media screen and (max-width: 1024px) {
  .steps-list {
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media screen and (max-width: 599px) {
  .steps-list {
    flex-direction: column;
    gap: 32px;
  }

  .steps-title h2 {
    margin-bottom: 0px;
}
.steps-title {
  position: relative;
  margin-bottom: 30px;
}
}



/* セクション全体 */
.faq-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 150px;
    margin-bottom: 120px;
    background-color: var(--bg-light);
}

/* タイトル側 */
.faq-title {
  position: relative;
  flex: 0 0 400px;
}

.faq-title .flow-bg {
  font-family: "Oswald", sans-serif;
  position: absolute;
  transform: translateY(-50%);
  top: 13%;
  left: 0;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.faq-title h2 {
  margin: 0;
  font-size: 32px;
  color: var(--dark);
  z-index: 1;
  position: relative;
}

/* リスト側 */
.faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 個別アイテム */
.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 30px 10px 30px 10px;
}


/* summary をボタン風に */
.faq-item summary {
  position: relative;
  padding-right: 48px; /* 丸アイコン分のスペース確保 */
}

/* summary のデフォルトマーカーを消す */
.faq-item summary {
  list-style: none;            /* 一般的なリストスタイルを消去 */
  -webkit-appearance: none;    /* iOS / WebKit 対策 */
  appearance: none;            /* 標準外観をリセット */
  padding-left: 0;             /* 左余白あれば調整 */
}

/* Chrome/Safari */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Firefox */
.faq-item summary::-moz-list-bullet {
  font-size: 0;
  color: transparent;
}

/* Edge など共通 */
.faq-item summary::marker {
  font-size: 0;
  color: transparent;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 50%;
    transition: transform 0.2s, content 0.2s;
}

/* 開いたときはマイナスに切り替え */
.faq-item[open] summary::after {
  content: "−";  /* マイナス記号（全角ハイフンまたは半角ハイフンでも可） */
}


/* Qアイコン */
.faq-icon {
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

/* 質問文 */
.question-text {
  font-size: 16px;
  font-weight: bold;
  color: var(--dark);
}

/* 回答部分 */
.answer {
    padding: 20px 0px 0px 0px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    display: none;
}

.faq-item[open] .answer {
  display: block;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .faq-section {
    flex-direction: column;
    gap: 24px;
  }
  .faq-title {
    flex: none;
  }
}




  #flow-section h3 {
    text-align: center;
    color: #fff;
}

  #flow-section ul{
    gap: 100px;
  }
  
  #flow-section ul li {
    flex: 1;
    box-shadow: 0px 0px 9px -5px #777777;
    position: relative;
    padding: 20px;
    background: #fff;
  }
  
  #flow-section ul li::after {
    content: '';
    /* bottom: 50%; */
    position: absolute;
    top: 46%;
    right: -57px;
    transform: translateY(-50%);
    border: solid #fff;
    border-width: 5px 5px 0 0;
    display: inline-block;
    padding: 10px;
    transform: rotate(45deg);
    background: transparent;
}
  
  #flow-section ul li:last-of-type:after {
  display: none;
  }
  
  #flow-section ul li .stephead {
    color: #000;
    font-weight: bold;
    text-align: center;
    /* background: linear-gradient(to right, #ff0077, #c85fc7); */
    font-size: 15px;
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}
  
  #flow-section .stephead{
    line-height: inherit;
      overflow-y: visible;
  }
  
  
 #flow-section .step {
    display: block;
    font-family: "Caveat", cursive;
    line-height: inherit;
    font-size: 22px;
    margin-bottom: 5px;
}
  
#flow-section .number {
    display: block;
    left: 4px;
    margin-top: -25px;
    font-family: "Caveat", cursive;
    margin-left: -15px;
    line-height: normal;
    font-size: 49px;
    position: relative;
}

  #flow-section .icon {
    width: 30%;
    margin: 0px auto 20px;
  }

#flow-section .heading {
    text-align: center;
    font-size: 22px;
    color: #1e242c;
}
  
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.438rem + 1.56vw, 3rem);
  }

  .faq-item summary::marker{
    display: none;
  }
 
  .faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
  }
  
  .faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  }
  
  
  .faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
  }
  
  .faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  }
  
  /* .faq .card .card-header:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 10px;
  } */
  
  .faq .card .card-header .faq-title {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    background: linear-gradient(108deg,#0079d0 0,#9e52d8 32%,#da365c 84%,#d04901 100%);
    color: #fff;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .faq .card .card-header .faq-title .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 14px;
    float: left;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    text-align: center;
    background: #fff;
    color: #E91E63;
    font-size: 12px;
    margin-right: 20px;
  }
  
  .faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
  }
  
  .faq .card .card-body p {
  margin-bottom: 14px;
  }
  
  @media (max-width: 1024px) {

    .faq-section {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      margin-top: 100px;
      margin-bottom: 120px;
      background-color: var(--bg-light);
  }

  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }

  .faq-title {
    margin-bottom: 80px;
}

#price .flow-bg {
  font-size: 80px;
  white-space: nowrap;
  position: absolute;
  bottom: 50%;
  top: -20%;
  transform: translate(-50%, -50%);
}

#price .flow-bg {
  font-size: 80px;
  white-space: nowrap;
  position: absolute;
  top: -20%;
}
  }
  
  @media (max-width: 599px) {

    .faq-title h2 {
      position: relative;
      margin-bottom: 30px;
      display: inline-block;
      font-weight: 600;
      font-size: clamp(1.75rem, 1.438rem + 1.56vw, 3rem);
      line-height: normal;
  }

    .faq-title {
      margin-bottom: 30px;
  }

≈

.faq-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: var(--bg-light);
}
  }
  
  #qa-section h3{
      text-align: center;
  }
  
#flow-section {
    position: relative;
    overflow: hidden;
    background-color: rgb(30 36 44);
    background-size: cover;
    background-blend-mode: lighten;
    padding: 50px 0 100px 0px;
    background-image: radial-gradient(#373636 0.5px, transparent 0.5px);
    background-size: 8px 8px;
}



#flow-section .caveat{
  color: #fff;
}
/* footer */

footer{
  background-color: #1e242c;
}

.footer-inner a{
 color: #fff;
}

footer .footer-inner{
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0px;
    background: #1e242c;
}
  
.footer-logo{
  width: 200px;
}

@media (max-width: 1024px) {

  .faq-title .flow-bg {
    top: 30%;
    font-size: 80px;
}

  .steps-section .flow-bg {
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
}

.header{
  background-color: #fff;
}

.cta-area ul{
  position: fixed;
  bottom: 10px;
  z-index: 99;
  width: 100%;
  left: 55%;
  right: 50%;
  transform: translateX(-50%);
}

/* 1024px以下で縦並びに切り替え */
.service-intro .d-flex {
  flex-direction: column;
  gap: 30px;
}

.service-intro .txt-box {
    width: 100%;
    padding: 45px 6% 45px 6%;
    margin-left: 0;
    margin-bottom: 0;
}

.service-intro .order2 {
    width: 70%;
    min-width: auto;
    margin: 0 auto;
}



.reasons {
    padding: 50px 0 100px;
    margin-top: 100px;
    margin-bottom: 150px;
}

.reason01{
  opacity: 0;
}

.reasons::before{
  height: 10vw;
}

.reason__content {
    margin-top: 0px;
}

.reason-list li .reason{
  height: auto !important;
}

 .reasons .flow-bg {
  font-size: 80px;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
}

.pricing-cards {
    gap: 32px 16px;
    padding: 40px 0px 0px;
}



#price h3 {
  line-height: unset;
  font-size: 1.8rem;
}

.steps-section {
  padding: 80px 20px 100px 20px;
}

.steps-list {
  gap: 32px;
  width: 100%;
  justify-content: center;
  flex-direction: column;
}

.step-box{
width: 100%;
}

.step {
  margin: 0px;
  width: 80%;
}

.step-desc{
  height: auto !important;
}

.steps-list::before {
  height: 100%;
  width: 100%;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  background: url(../image/sp-arrow.png) no-repeat bottom center;
}


.cta-area ul {
  left: 50%;
  justify-content: center;
  right: 50%;
  transform: translateX(-50%);
}

.cta-area ul li{
  width: 40%;
}

.faq-item {
  padding: 20px 10px 20px 10px;
}

footer{
  padding-bottom: 80px;
}


.faq-section .d-flex{
  display: block;
}
}


@media (max-width: 599px) {

  .faq-section {
    display: flex
;
    align-items: flex-start;
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 80px;
    background-color: var(--bg-light);
}

  .faq-title .flow-bg {
    top: 40%;
    font-size: 80px;
    bottom: 0%;
    line-height: inherit;
    transform: translateY(-50%);
}

  #price .flow-bg {
    top: -40%;
}

#worries h3.left-60{
  width: 80%;
  left: 30px; 
}

#worries .worries__list{
  flex-direction: column;
  column-gap: 20px;
}

#worries .worries__col {
  width: 96%;
  margin: auto;
}

.worries__item p {
  font-size: 12px;
}

.flex-column-sp{
  flex-direction: column;
}

.flex-column-sp .txt-box{
  display: contents;
}

.order0{
  order: 0;
}

.order1{
  order: 1;
}

.order2{
  order: 2;
}

.order3{
  order: 3;
}

.service-intro {
  padding-bottom: 0px;
}

.service-intro .order2 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
}

.service-intro__title {
    font-size: 20px;
    color: #1e242c;
 }

.service-intro__desc {
    font-size: 14px;
    color: #1e242c;
    width: 100%;
}

.reason-list li{
  background-color: transparent;
}

.reasons__header {
  margin-bottom: 100px;
}

.reasons {
  padding: 50px 0 100px;
  margin-top: 100px;
  margin-bottom: 100px;
}


}

/* スマートフォン */

@media (max-width: 599px) {
  .header .logo {
    width: 120px;
} 

#sp-navArea .toggle_btn {
  top: 25px;
}

.service-intro__label {
  width: 80%;
  margin-bottom: 0px;
}

.service-intro__title {
  font-size: 20px;
}
.triangle {
    height: 60px;
    background: linear-gradient(to bottom, /* 上部のベース色 */ #1c2730 0%, /* 中間でベース色をキープ */ #1e242c 60%, /* 下部でフェードアウトする色（下のセクション背景色と合わせる） */ #f5f6f7 96%);
    margin-top: -10px;
}

.reasons {
  padding: 50px 0px;
}

.reasons::before {
  height: 11vw;
}

.reasons .reason-list li .reason .reason__number {
    left: 0px;
    width: 200px;
    top: -20px;
    position: relative;
}

.reason-list li .d-flex.jc-sb {
    display: grid;
}
.reason-list li .d-flex.jc-sb .reason.pos-r {
    width: 100%;
    display: contents;
}

.reason-list li .reason-inner{
  display: contents;
}

.reason-list li .reason__number{
  order: 1;
}

.reason__content {
    display: contents;
    order: 2;
}

.reason__title {
    font-size: 20px;
    margin-bottom: 30px;
    order: 1;
}

.reason-list li .reason.reason--image {
  order: 2;
  width: 80%;
  height: auto;
  margin: 0px auto 30px;
}

.reason__text {
    order: 3;
    display: grid;
}

.reason-list li:not(:last-of-type) {
  margin-bottom: 70px;
}

.h3 {
  font-size: 28px;
}

.table-wrap{
  overflow-x: scroll; 
}

.pricing-table{
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.step {
  width: 100%;
}

.step-desc {
  height: auto !important;
}

.steps-section {
  padding: 50px 20px 70px 20px;
}

.steps-list::before {
  top: 110px;
  left: 20%;
  background: url(../image/sp-arrow.png) no-repeat bottom right;
}

.question-text {
  display: block;
}
.steps-section .flow-bg {
  font-size: 80px;
  white-space: nowrap;
  position: absolute;
  top: 0%;
  left: 50%;
}

footer {
  padding-bottom: 50px;
}

}